home *** CD-ROM | disk | FTP | other *** search
/ X User Tools / X User Tools (O'Reilly and Associates)(1994).ISO / sun4c / archive / tcltk.z / tcltk / man / cat3 / CrtInterp.3 < prev    next >
Text File  |  1994-09-20  |  2KB  |  67 lines

  1.  
  2.  
  3.  
  4. Tcl_CreateInterp(3)  Tcl Library Procedures
  5.  
  6.  
  7.  
  8. _________________________________________________________________
  9.  
  10. NAME
  11.      Tcl_CreateInterp, Tcl_DeleteInterp - create and  delete  Tcl
  12.      command interpreters
  13.  
  14. SYNOPSIS
  15.      #include <tcl.h>
  16.  
  17.      Tcl_Interp *
  18.      Tcl_CreateInterp()
  19.  
  20.      Tcl_DeleteInterp(_i_n_t_e_r_p)
  21.  
  22. ARGUMENTS
  23.      Tcl_Interp   *_i_n_t_e_r_p   (in)      Token for interpreter to be
  24.                                       destroyed.
  25. _________________________________________________________________
  26.  
  27.  
  28. DESCRIPTION
  29.      Tcl_CreateInterp creates a  new  interpreter  structure  and
  30.      returns  a  token for it.  The token is required in calls to
  31.      most  other  Tcl  procedures,  such  as   Tcl_CreateCommand,
  32.      Tcl_Eval, and Tcl_DeleteInterp.  Clients are only allowed to
  33.      access a few of the fields of  Tcl_Interp  structures;   see
  34.      the  Tcl_Interp and Tcl_CreateCommand man pages for details.
  35.      The new interpreter is initialized with no defined variables
  36.      and  only  the built-in Tcl commands.  To bind in additional
  37.      commands, call Tcl_CreateCommand.
  38.  
  39.      Tcl_DeleteInterp destroys a command interpreter and releases
  40.      all  of  the  resources  associated with it, including vari-
  41.      ables, procedures, and  application-specific  command  bind-
  42.      ings.   After  Tcl_DeleteInterp  returns  the  caller should
  43.      never again use the _i_n_t_e_r_p token.
  44.  
  45.  
  46. KEYWORDS
  47.      command, create, delete, interpreter
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63. Tcl                                                             1
  64.  
  65.  
  66.  
  67.